home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 61 / CDRom61.iso / Programas / Cosmo Player / cp21setup.exe / data1.cab / Files4Worlds20-2 / ifl_database
Encoding:
Text File  |  1998-05-21  |  947 b   |  36 lines

  1. format GIF
  2.     match         string(0,6) == "GIF87a" || string(0,6) == "GIF89a"
  3.     description    "GIF image"
  4.     dso        ifl_gif.dll
  5.     subsystem    "cosmo"
  6.     suffixes    .gif
  7.  
  8. format JFIF
  9.     match         ulong(0) == 0xffd8ffe0 && string(6,4) == "JFIF" || ulong(0) == 0xffd8fffe
  10.     description   "JFIF/JPEG image"
  11.     dso        ifl_jpeg.dll
  12.     subsystem    "cosmo"
  13.     suffixes    .jpg,.jpeg,.jfif
  14.  
  15. format SGI 
  16.     match         ushort(0) == 0x01da || ushort(0) == 0xda01
  17.     description   "Classic SGI image"
  18.     dso           ifl_sgi.dll
  19.     subsystem     "cosmo"
  20.     suffixes      .rgb,.rgba,.bw
  21.  
  22. format PNG
  23.     match         ulong(0) == 0x89504e47 && ulong(4) == 0x0d0a1a0a
  24.     description   "PNG image"
  25.     dso           ifl_png.dll
  26.     subsystem     "cosmo"
  27.     suffixes      .png
  28.  
  29. format GZIP
  30.     match         string(0,2) == "\037\213"
  31.     description   "GZIP compression"
  32.     dso           ifl_libz.dll
  33.     subsystem     "cosmo"
  34.     suffixes      .gz
  35.  
  36.